From 4f712d4f73214685a80f00113dec338eb0cbfcd0 Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Thu, 12 Apr 2007 10:24:53 -0600 Subject: [PATCH] [IA64] Formatting fix This extra space after the newline causes printk to get confused and re-evaluate do_print and leave start_of_line == 0. Anything printed after this will always print, regardless of intended log level. Signed-off-by: Alex Williamson --- xen/arch/ia64/xen/mm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/ia64/xen/mm.c b/xen/arch/ia64/xen/mm.c index 6cd28d3457..d2fb513125 100644 --- a/xen/arch/ia64/xen/mm.c +++ b/xen/arch/ia64/xen/mm.c @@ -673,7 +673,7 @@ unsigned long lookup_domain_mpa(struct domain *d, unsigned long mpaddr, } else if (mpaddr - IO_PORTS_PADDR < IO_PORTS_SIZE) { /* Log I/O port probing, but complain less loudly about it */ gdprintk(XENLOG_INFO, "vcpu %d iip 0x%016lx: bad I/O port access " - "0x%lx\n ", current->vcpu_id, PSCB(current, iip), + "0x%lx\n", current->vcpu_id, PSCB(current, iip), IO_SPACE_SPARSE_DECODING(mpaddr - IO_PORTS_PADDR)); } else { gdprintk(XENLOG_WARNING, "vcpu %d iip 0x%016lx: bad mpa 0x%lx " -- 2.30.2